More debug printfs for populating the completion store
authorFederico Mena Quintero <federico@gnu.org>
Thu, 13 Mar 2008 00:37:27 +0000 (00:37 +0000)
committerFederico Mena Quintero <federico@src.gnome.org>
Thu, 13 Mar 2008 00:37:27 +0000 (00:37 +0000)
Signed-off-by: Federico Mena Quintero <federico@gnu.org>
svn path=/trunk/; revision=19825

gtk/gtkfilechooserentry.c

index f016c376ae279a05b9b14201592be98495f59fde..1495f22abd3988fc18f1cb5e7975c5d747dabe49 100644 (file)
@@ -768,6 +768,8 @@ populate_completion_store (GtkFileChooserEntry *chooser_entry)
 
       path = tmp_list->data;
 
+      printf ("Getting info for %s\n", (char *) path);
+
       info = gtk_file_folder_get_info (chooser_entry->current_folder,
                                       path,
                                       NULL); /* NULL-GError */
@@ -798,6 +800,8 @@ populate_completion_store (GtkFileChooserEntry *chooser_entry)
 
   gtk_entry_completion_set_model (gtk_entry_get_completion (GTK_ENTRY (chooser_entry)),
                                  GTK_TREE_MODEL (chooser_entry->completion_store));
+
+  printf ("Finished populating completion store\n");
 }
 
 /* When we finish loading the current folder, this function should get called to